home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: 2001 Haziran
/
CHIP Haziran2001.iso
/
prog
/
haziran
/
19
/
setup.exe
/
data.z
/
isapnp_scan.c
< prev
next >
Wrap
C/C++ Source or Header
|
2001-04-11
|
544b
|
20 lines
////////////////////////////////////////////////////////////////
// File - ISAPNP_SCAN.C
//
// A utility for getting a list of the ISA PnP cards installed
// and the resources allocated for each one of them (memory
// ranges, IO ranges and interrupts).
//
////////////////////////////////////////////////////////////////
#include "../../include/windrvr.h"
#include "../shared/print_struct.h"
#include "../shared/isapnp_diag_lib.h"
int main (int argc, char *argv[])
{
ISAPNP_Print_all_cards_info();
return 0;
}